home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ MSI Options 2.xpl < prev    next >
Text File  |  1999-07-15  |  2KB  |  54 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="7"
  3. "COUNT"="5"
  4. "UIPATH"="System\Software Installation\Windows Installer"
  5. "NAME"="Media Access Order"
  6. "VERSION"="1.02"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="First network, then CD/DVD, then URL"
  9. "TEXT 2"="First network, then URL, then CD/DVD"
  10. "TEXT 3"="First CD/DVD, then network, then URL"
  11. "TEXT 4"="First URL, then network, then CD/DVD"
  12. "TEXT 5"="First URL, then CD/DVD, then network"
  13. "DESCRIPTION 1"="When searching for the source of installation files, the Windows Installer will search the different locations in the order you can configure here."
  14. "AUTHOR"="Xteq Systems"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  17.  
  18.  
  19. sPathSys="HKLM\Software\Policies\Microsoft\Windows\Installer\"
  20. sPathUsr="HKCU\Software\Policies\Microsoft\Windows\Installer\"
  21.  
  22. sV1="SearchOrder" 'STR - usr
  23.  
  24. Sub Plugin_Initialize 
  25.  s=RegReadValue(sPathUsr & sV1)
  26.  s=Ucase(s)
  27.  
  28.  if s="NMU" then SetUIElement 1,true
  29.  if s="NUM" then SetUIElement 2,true
  30.  if s="MNU" then SetUIElement 3,true
  31.  if s="UNM" then SetUIElement 4,true
  32.  if s="UMN" then SetUIElement 5,true
  33. End Sub
  34.  
  35. Sub Plugin_CheckData(ElementIndex)
  36. End Sub
  37.  
  38. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  39.  s=""
  40.  
  41.  if GetUIElement(1)=true then s="NMU"
  42.  if GetUIElement(2)=true then s="NUM"
  43.  if GetUIElement(3)=true then s="MNU"
  44.  if GetUIElement(4)=true then s="UNM"
  45.  if GetUIElement(5)=true then s="UMN"
  46.  
  47.  if len(s)>0 then
  48.     Call RegWriteValue(sPathUsr & sV1,s,1)
  49.  end if
  50. End Sub
  51.  
  52. Sub Plugin_Terminate 
  53. End Sub
  54.